home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2004 July / DPPCPRO0704.ISO / Download / PHP 5 / php-5.0.0RC1-Win32.exe / php.ini-recommended < prev    next >
Encoding:
INI File  |  2004-03-18  |  42.2 KB  |  1,187 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About this file ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ;
  7. ; This is the recommended, PHP 4-style version of the php.ini-dist file.  It
  8. ; sets some non standard settings, that make PHP more efficient, more secure,
  9. ; and encourage cleaner coding.
  10. ; The price is that with these settings, PHP may be incompatible with some
  11. ; applications, and sometimes, more difficult to develop with.  Using this
  12. ; file is warmly recommended for production sites.  As all of the changes from
  13. ; the standard settings are thoroughly documented, you can go over each one,
  14. ; and decide whether you want to use it or not.
  15. ;
  16. ; For general information about the php.ini file, please consult the php.ini-dist
  17. ; file, included in your PHP distribution.
  18. ;
  19. ; This file is different from the php.ini-dist file in the fact that it features
  20. ; different values for several directives, in order to improve performance, while
  21. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  22. ; PHP 3.  Please make sure you read what's different, and modify your scripts
  23. ; accordingly, if you decide to use this file instead.
  24. ;
  25. ; - register_globals = Off         [Security, Performance]
  26. ;     Global variables are no longer registered for input data (POST, GET, cookies,
  27. ;     environment and other server variables).  Instead of using $foo, you must use
  28. ;     you can use $_REQUEST["foo"] (includes any variable that arrives through the
  29. ;     request, namely, POST, GET and cookie variables), or use one of the specific
  30. ;     $_GET["foo"], $_POST["foo"], $_COOKIE["foo"] or $_FILES["foo"], depending
  31. ;     on where the input originates.  Also, you can look at the
  32. ;     import_request_variables() function.
  33. ;     Note that register_globals is going to be depracated (i.e., turned off by
  34. ;     default) in the next version of PHP, because it often leads to security bugs.
  35. ;     Read http://php.net/manual/en/security.registerglobals.php for further
  36. ;     information.
  37. ; - display_errors = Off           [Security]
  38. ;     With this directive set to off, errors that occur during the execution of
  39. ;     scripts will no longer be displayed as a part of the script output, and thus,
  40. ;     will no longer be exposed to remote users.  With some errors, the error message
  41. ;     content may expose information about your script, web server, or database
  42. ;     server that may be exploitable for hacking.  Production sites should have this
  43. ;     directive set to off.
  44. ; - log_errors = On                [Security]
  45. ;     This directive complements the above one.  Any errors that occur during the
  46. ;     execution of your script will be logged (typically, to your server's error log,
  47. ;     but can be configured in several ways).  Along with setting display_errors to off,
  48. ;     this setup gives you the ability to fully understand what may have gone wrong,
  49. ;     without exposing any sensitive information to remote users.
  50. ; - output_buffering = 4096        [Performance]
  51. ;     Set a 4KB output buffer.  Enabling output buffering typically results in less
  52. ;     writes, and sometimes less packets sent on the wire, which can often lead to
  53. ;     better performance.  The gain this directive actually yields greatly depends
  54. ;     on which Web server you're working with, and what kind of scripts you're using.
  55. ; - register_argc_argv = Off       [Performance]
  56. ;     Disables registration of the somewhat redundant $argv and $argc global
  57. ;     variables.
  58. ; - magic_quotes_gpc = Off         [Performance]
  59. ;     Input data is no longer escaped with slashes so that it can be sent into
  60. ;     SQL databases without further manipulation.  Instead, you should use the
  61. ;     function addslashes() on each input element you wish to send to a database.
  62. ; - variables_order = "GPCS"       [Performance]
  63. ;     The environment variables are not hashed into the $HTTP_ENV_VARS[].  To access
  64. ;     environment variables, you can use getenv() instead.
  65. ; - error_reporting = E_ALL        [Code Cleanliness, Security(?)]
  66. ;     By default, PHP surpresses errors of type E_NOTICE.  These error messages
  67. ;     are emitted for non-critical errors, but that could be a symptom of a bigger
  68. ;     problem.  Most notably, this will cause error messages about the use
  69. ;     of uninitialized variables to be displayed.
  70. ; - allow_call_time_pass_reference = Off     [Code cleanliness]
  71. ;     It's not possible to decide to force a variable to be passed by reference
  72. ;     when calling a function.  The PHP 4 style to do this is by making the
  73. ;     function require the relevant argument by reference.
  74.  
  75.  
  76. ;;;;;;;;;;;;;;;;;;;;
  77. ; Language Options ;
  78. ;;;;;;;;;;;;;;;;;;;;
  79.  
  80. ; Enable the PHP scripting language engine under Apache.
  81. engine = On
  82.  
  83. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  84. zend.ze1_compatibility_mode = Off
  85.  
  86. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  87. ; NOTE: Using short tags should be avoided when developing applications or
  88. ; libraries that are meant for redistribution, or deployment on PHP
  89. ; servers which are not under your control, because short tags may not
  90. ; be supported on the target server. For portable, redistributable code,
  91. ; be sure not to use short tags.
  92. short_open_tag = On
  93.  
  94. ; Allow ASP-style <% %> tags.
  95. asp_tags = Off
  96.  
  97. ; The number of significant digits displayed in floating point numbers.
  98. precision    =  14
  99.  
  100. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  101. y2k_compliance = On
  102.  
  103. ; Output buffering allows you to send header lines (including cookies) even
  104. ; after you send body content, at the price of slowing PHP's output layer a
  105. ; bit.  You can enable output buffering during runtime by calling the output
  106. ; buffering functions.  You can also enable output buffering for all files by
  107. ; setting this directive to On.  If you wish to limit the size of the buffer
  108. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  109. ; a value for this directive (e.g., output_buffering=4096).
  110. output_buffering = 4096
  111.  
  112. ; You can redirect all of the output of your scripts to a function.  For
  113. ; example, if you set output_handler to "mb_output_handler", character
  114. ; encoding will be transparently converted to the specified encoding.
  115. ; Setting any output handler automatically turns on output buffering.
  116. ; Note: People who wrote portable scripts should not depend on this ini
  117. ;       directive. Instead, explicitly set the output handler using ob_start().
  118. ;       Using this ini directive may cause problems unless you know what script
  119. ;       is doing.
  120. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  121. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  122. ;output_handler =
  123.  
  124. ; Transparent output compression using the zlib library
  125. ; Valid values for this option are 'off', 'on', or a specific buffer size
  126. ; to be used for compression (default is 4KB)
  127. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  128. ;       outputs chunks that are few handreds bytes each as a result of compression.
  129. ;       If you want larger chunk size for better performence, enable output_buffering
  130. ;       also.
  131. ; Note: output_handler must be empty if this is set 'On' !!!!
  132. ;       Instead you must use zlib.output_handler.
  133. zlib.output_compression = Off
  134.  
  135. ; You cannot specify additional output handlers if zlib.output_compression
  136. ; is activated here. This setting does the same as output_handler but in
  137. ; a different order.
  138. ;zlib.output_handler =
  139.  
  140. ; Implicit flush tells PHP to tell the output layer to flush itself
  141. ; automatically after every output block.  This is equivalent to calling the
  142. ; PHP function flush() after each and every call to print() or echo() and each
  143. ; and every HTML block.  Turning this option on has serious performance
  144. ; implications and is generally recommended for debugging purposes only.
  145. implicit_flush = Off
  146.  
  147. ; The unserialize callback function will called (with the undefind class'
  148. ; name as parameter), if the unserializer finds an undefined class
  149. ; which should be instanciated.
  150. ; A warning appears if the specified function is not defined, or if the
  151. ; function doesn't include/implement the missing class.
  152. ; So only set this entry, if you really want to implement such a
  153. ; callback-function.
  154. unserialize_callback_func=
  155.  
  156. ; When floats & doubles are serialized store serialize_precision significant
  157. ; digits after the floating point. The default value ensures that when floats
  158. ; are decoded with unserialize, the data will remain the same.
  159. serialize_precision = 100
  160.  
  161. ; Whether to enable the ability to force arguments to be passed by reference
  162. ; at function call time.  This method is deprecated and is likely to be
  163. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  164. ; specifying which arguments should be passed by reference is in the function
  165. ; declaration.  You're encouraged to try and turn this option Off and make
  166. ; sure your scripts work properly with it in order to ensure they will work
  167. ; with future versions of the language (you will receive a warning each time
  168. ; you use this feature, and the argument will be passed by value instead of by
  169. ; reference).
  170. allow_call_time_pass_reference = Off
  171.  
  172. ;
  173. ; Safe Mode
  174. ;
  175. safe_mode = Off
  176.  
  177. ; By default, Safe Mode does a UID compare check when
  178. ; opening files. If you want to relax this to a GID compare,
  179. ; then turn on safe_mode_gid.
  180. safe_mode_gid = Off
  181.  
  182. ; When safe_mode is on, UID/GID checks are bypassed when
  183. ; including files from this directory and its subdirectories.
  184. ; (directory must also be in include_path or full path must
  185. ; be used when including)
  186. safe_mode_include_dir =
  187.  
  188. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  189. ; will be allowed to be executed via the exec family of functions.
  190. safe_mode_exec_dir =
  191.  
  192. ; Setting certain environment variables may be a potential security breach.
  193. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  194. ; the user may only alter environment variables whose names begin with the
  195. ; prefixes supplied here.  By default, users will only be able to set
  196. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  197. ;
  198. ; Note:  If this directive is empty, PHP will let the user modify ANY
  199. ; environment variable!
  200. safe_mode_allowed_env_vars = PHP_
  201.  
  202. ; This directive contains a comma-delimited list of environment variables that
  203. ; the end user won't be able to change using putenv().  These variables will be
  204. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  205. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  206.  
  207. ; open_basedir, if set, limits all file operations to the defined directory
  208. ; and below.  This directive makes most sense if used in a per-directory
  209. ; or per-virtualhost web server configuration file. This directive is
  210. ; *NOT* affected by whether Safe Mode is turned On or Off.
  211. ;open_basedir =
  212.  
  213. ; This directive allows you to disable certain functions for security reasons.
  214. ; It receives a comma-delimited list of function names. This directive is
  215. ; *NOT* affected by whether Safe Mode is turned On or Off.
  216. disable_functions =
  217.  
  218. ; This directive allows you to disable certain classes for security reasons.
  219. ; It receives a comma-delimited list of class names. This directive is
  220. ; *NOT* affected by whether Safe Mode is turned On or Off.
  221. disable_classes =
  222.  
  223. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  224. ; <font color="??????"> would work.
  225. ;highlight.string  = #DD0000
  226. ;highlight.comment = #FF9900
  227. ;highlight.keyword = #007700
  228. ;highlight.bg      = #FFFFFF
  229. ;highlight.default = #0000BB
  230. ;highlight.html    = #000000
  231.  
  232.  
  233. ;
  234. ; Misc
  235. ;
  236. ; Decides whether PHP may expose the fact that it is installed on the server
  237. ; (e.g. by adding its signature to the Web server header).  It is no security
  238. ; threat in any way, but it makes it possible to determine whether you use PHP
  239. ; on your server or not.
  240. expose_php = On
  241.  
  242.  
  243. ;;;;;;;;;;;;;;;;;;;
  244. ; Resource Limits ;
  245. ;;;;;;;;;;;;;;;;;;;
  246.  
  247. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  248. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  249. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  250.  
  251.  
  252. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  253. ; Error handling and logging ;
  254. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  255.  
  256. ; error_reporting is a bit-field.  Or each number up to get desired error
  257. ; reporting level
  258. ; E_ALL             - All errors and warnings
  259. ; E_ERROR           - fatal run-time errors
  260. ; E_WARNING         - run-time warnings (non-fatal errors)
  261. ; E_PARSE           - compile-time parse errors
  262. ; E_NOTICE          - run-time notices (these are warnings which often result
  263. ;                     from a bug in your code, but it's possible that it was
  264. ;                     intentional (e.g., using an uninitialized variable and
  265. ;                     relying on the fact it's automatically initialized to an
  266. ;                     empty string)
  267. ; E_STRICT          - run-time notices, enable to have PHP suggest changes
  268. ;                     to your code which will ensure the best interoperability
  269. ;                     and forward compatability of your code
  270. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  271. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  272. ;                     initial startup
  273. ; E_COMPILE_ERROR   - fatal compile-time errors
  274. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  275. ; E_USER_ERROR      - user-generated error message
  276. ; E_USER_WARNING    - user-generated warning message
  277. ; E_USER_NOTICE     - user-generated notice message
  278. ;
  279. ; Examples:
  280. ;
  281. ;   - Show all errors, except for notices and coding standards warnings
  282. ;
  283. ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
  284. ;
  285. ;   - Show all errors, except for notices
  286. ;
  287. ;error_reporting = E_ALL & ~E_NOTICE
  288. ;
  289. ;   - Show only errors
  290. ;
  291. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  292. ;
  293. ;   - Show all errors
  294. ;
  295. error_reporting  =  E_ALL
  296.  
  297. ; Print out errors (as a part of the output).  For production web sites,
  298. ; you're strongly encouraged to turn this feature off, and use error logging
  299. ; instead (see below).  Keeping display_errors enabled on a production web site
  300. ; may reveal security information to end users, such as file paths on your Web
  301. ; server, your database schema or other information.
  302. display_errors = Off
  303.  
  304. ; Even when display_errors is on, errors that occur during PHP's startup
  305. ; sequence are not displayed.  It's strongly recommended to keep
  306. ; display_startup_errors off, except for when debugging.
  307. display_startup_errors = Off
  308.  
  309. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  310. ; As stated above, you're strongly advised to use error logging in place of
  311. ; error displaying on production web sites.
  312. log_errors = On
  313.  
  314. ; Set maximum length of log_errors. In error_log information about the source is
  315. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  316. log_errors_max_len = 1024
  317.  
  318. ; Do not log repeated messages. Repeated errors must occur in same file on same
  319. ; line until ignore_repeated_source is set true.
  320. ignore_repeated_errors = Off
  321.  
  322. ; Ignore source of message when ignoring repeated messages. When this setting
  323. ; is On you will not log errors with repeated messages from different files or
  324. ; sourcelines.
  325. ignore_repeated_source = Off
  326.  
  327. ; If this parameter is set to Off, then memory leaks will not be shown (on
  328. ; stdout or in the log). This has only effect in a debug compile, and if
  329. ; error reporting includes E_WARNING in the allowed list
  330. report_memleaks = On
  331.  
  332. ; Store the last error/warning message in $php_errormsg (boolean).
  333. track_errors = Off
  334.  
  335. ; Disable the inclusion of HTML tags in error messages.
  336. ; Note: Never use this feature for production boxes.
  337. ;html_errors = Off
  338.  
  339. ; If html_errors is set On PHP produces clickable error messages that direct
  340. ; to a page describing the error or function causing the error in detail.
  341. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  342. ; and change docref_root to the base URL of your local copy including the
  343. ; leading '/'. You must also specify the file extension being used including
  344. ; the dot.
  345. ; Note: Never use this feature for production boxes.
  346. ;docref_root = "/phpmanual/"
  347. ;docref_ext = .html
  348.  
  349. ; String to output before an error message.
  350. ;error_prepend_string = "<font color=ff0000>"
  351.  
  352. ; String to output after an error message.
  353. ;error_append_string = "</font>"
  354.  
  355. ; Log errors to specified file.
  356. ;error_log = filename
  357.  
  358. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  359. ;error_log = syslog
  360.  
  361.  
  362. ;;;;;;;;;;;;;;;;;
  363. ; Data Handling ;
  364. ;;;;;;;;;;;;;;;;;
  365. ;
  366. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  367.  
  368. ; The separator used in PHP generated URLs to separate arguments.
  369. ; Default is "&".
  370. ;arg_separator.output = "&"
  371.  
  372. ; List of separator(s) used by PHP to parse input URLs into variables.
  373. ; Default is "&".
  374. ; NOTE: Every character in this directive is considered as separator!
  375. ;arg_separator.input = ";&"
  376.  
  377. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  378. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  379. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  380. ; values override older values.
  381. variables_order = "GPCS"
  382.  
  383. ; Whether or not to register the EGPCS variables as global variables.  You may
  384. ; want to turn this off if you don't want to clutter your scripts' global scope
  385. ; with user data.  This makes most sense when coupled with track_vars - in which
  386. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  387. ; variables.
  388. ;
  389. ; You should do your best to write your scripts so that they do not require
  390. ; register_globals to be on;  Using form variables as globals can easily lead
  391. ; to possible security problems, if the code is not very well thought of.
  392. register_globals = Off
  393.  
  394. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  395. ; and friends.  If you're not using them, it's recommended to turn them off,
  396. ; for performance reasons.
  397. register_long_arrays = Off
  398.  
  399. ; This directive tells PHP whether to declare the argv&argc variables (that
  400. ; would contain the GET information).  If you don't use these variables, you
  401. ; should turn it off for increased performance.
  402. register_argc_argv = Off
  403.  
  404. ; Maximum size of POST data that PHP will accept.
  405. post_max_size = 8M
  406.  
  407. ; Magic quotes
  408. ;
  409.  
  410. ; Magic quotes for incoming GET/POST/Cookie data.
  411. magic_quotes_gpc = Off
  412.  
  413. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  414. magic_quotes_runtime = Off
  415.  
  416. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  417. magic_quotes_sybase = Off
  418.  
  419. ; Automatically add files before or after any PHP document.
  420. auto_prepend_file =
  421. auto_append_file =
  422.  
  423. ; As of 4.0b4, PHP always outputs a character encoding by default in
  424. ; the Content-type: header.  To disable sending of the charset, simply
  425. ; set it to be empty.
  426. ;
  427. ; PHP's built-in default is text/html
  428. default_mimetype = "text/html"
  429. ;default_charset = "iso-8859-1"
  430.  
  431. ; Always populate the $HTTP_RAW_POST_DATA variable.
  432. ;always_populate_raw_post_data = On
  433.  
  434.  
  435. ;;;;;;;;;;;;;;;;;;;;;;;;;
  436. ; Paths and Directories ;
  437. ;;;;;;;;;;;;;;;;;;;;;;;;;
  438.  
  439. ; UNIX: "/path1:/path2"
  440. ;include_path = ".:/php/includes"
  441. ;
  442. ; Windows: "\path1;\path2"
  443. ;include_path = ".;c:\php\includes"
  444.  
  445. ; The root of the PHP pages, used only if nonempty.
  446. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  447. ; if you are running php as a CGI under any web server (other than IIS)
  448. ; see documentation for security issues.  The alternate is to use the
  449. ; cgi.force_redirect configuration below
  450. doc_root =
  451.  
  452. ; The directory under which PHP opens the script using /~usernamem used only
  453. ; if nonempty.
  454. user_dir =
  455.  
  456. ; Directory in which the loadable extensions (modules) reside.
  457. extension_dir = "./"
  458.  
  459. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  460. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  461. ; disabled on them.
  462. enable_dl = On
  463.  
  464. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  465. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  466. ; turn it off here AT YOUR OWN RISK
  467. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  468. ; cgi.force_redirect = 1
  469.  
  470. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  471. ; every request.
  472. ; cgi.nph = 1
  473.  
  474. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  475. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  476. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  477. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  478. ; cgi.redirect_status_env = ;
  479.  
  480. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  481. ; security tokens of the calling client.  This allows IIS to define the
  482. ; security context that the request runs under.  mod_fastcgi under Apache
  483. ; does not currently support this feature (03/17/2002)
  484. ; Set to 1 if running under IIS.  Default is zero.
  485. ; fastcgi.impersonate = 1;
  486.  
  487. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  488. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  489. ; is supported by Apache. When this option is set to 1 PHP will send
  490. ; RFC2616 compliant header.
  491. ; Default is zero.
  492. ;cgi.rfc2616_headers = 0
  493.  
  494.  
  495. ;;;;;;;;;;;;;;;;
  496. ; File Uploads ;
  497. ;;;;;;;;;;;;;;;;
  498.  
  499. ; Whether to allow HTTP file uploads.
  500. file_uploads = On
  501.  
  502. ; Temporary directory for HTTP uploaded files (will use system default if not
  503. ; specified).
  504. ;upload_tmp_dir =
  505.  
  506. ; Maximum allowed size for uploaded files.
  507. upload_max_filesize = 2M
  508.  
  509.  
  510. ;;;;;;;;;;;;;;;;;;
  511. ; Fopen wrappers ;
  512. ;;;;;;;;;;;;;;;;;;
  513.  
  514. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  515. allow_url_fopen = On
  516.  
  517. ; Define the anonymous ftp password (your email address)
  518. ;from="john@doe.com"
  519.  
  520. ; Define the user agent for php to send
  521. ;user_agent="PHP"
  522.  
  523. ; Default timeout for socket based streams (seconds)
  524. default_socket_timeout = 60
  525.  
  526. ; If your scripts have to deal with files from Macintosh systems,
  527. ; or you are running on a Mac and need to deal with files from
  528. ; unix or win32 systems, setting this flag will cause PHP to
  529. ; automatically detect the EOL character in those files so that
  530. ; fgets() and file() will work regardless of the source of the file.
  531. ; auto_detect_line_endings = Off
  532.  
  533.  
  534. ;;;;;;;;;;;;;;;;;;;;;;
  535. ; Dynamic Extensions ;
  536. ;;;;;;;;;;;;;;;;;;;;;;
  537. ;
  538. ; If you wish to have an extension loaded automatically, use the following
  539. ; syntax:
  540. ;
  541. ;   extension=modulename.extension
  542. ;
  543. ; For example, on Windows:
  544. ;
  545. ;   extension=msql.dll
  546. ;
  547. ; ... or under UNIX:
  548. ;
  549. ;   extension=msql.so
  550. ;
  551. ; Note that it should be the name of the module only; no directory information
  552. ; needs to go here.  Specify the location of the extension with the
  553. ; extension_dir directive above.
  554.  
  555.  
  556. ;Windows Extensions
  557. ;Note that ODBC support is built in, so no dll is needed for it.
  558. ;
  559.  
  560. ;extension=php_bz2.dll
  561. ;extension=php_cpdf.dll
  562. ;extension=php_curl.dll
  563. ;extension=php_dba.dll
  564. ;extension=php_dbase.dll
  565. ;extension=php_dbx.dll
  566. ;extension=php_exif.dll
  567. ;extension=php_fdf.dll
  568. ;extension=php_filepro.dll
  569. ;extension=php_gd2.dll
  570. ;extension=php_gettext.dll
  571. ;extension=php_iconv.dll
  572. ;extension=php_ifx.dll
  573. ;extension=php_iisfunc.dll
  574. ;extension=php_imap.dll
  575. ;extension=php_interbase.dll
  576. ;extension=php_java.dll
  577. ;extension=php_ldap.dll
  578. ;extension=php_mbstring.dll
  579. ;extension=php_mcrypt.dll
  580. ;extension=php_mhash.dll
  581. ;extension=php_mime_magic.dll
  582. ;extension=php_ming.dll
  583. ;extension=php_mssql.dll
  584. ;extension=php_msql.dll
  585. ;extension=php_mysql.dll
  586. ;extension=php_oci8.dll
  587. ;extension=php_openssl.dll
  588. ;extension=php_oracle.dll
  589. ;extension=php_pdf.dll
  590. ;extension=php_pgsql.dll
  591. ;extension=php_shmop.dll
  592. ;extension=php_snmp.dll
  593. ;extension=php_sockets.dll
  594. ;extension=php_sybase_ct.dll
  595. ;extension=php_tidy.dll
  596. ;extension=php_w32api.dll
  597. ;extension=php_xmlrpc.dll
  598. ;extension=php_xsl.dll
  599. ;extension=php_yaz.dll
  600. ;extension=php_zip.dll
  601.  
  602.  
  603. ;;;;;;;;;;;;;;;;;;;
  604. ; Module Settings ;
  605. ;;;;;;;;;;;;;;;;;;;
  606.  
  607. [Syslog]
  608. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  609. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  610. ; runtime, you can define these variables by calling define_syslog_variables().
  611. define_syslog_variables  = Off
  612.  
  613. [mail function]
  614. ; For Win32 only.
  615. SMTP = localhost
  616.  
  617. ; For Win32 only.
  618. ;sendmail_from = me@example.com
  619.  
  620. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  621. ;sendmail_path =
  622.  
  623. ; Force the addition of the specified parameters to be passed as extra parameters
  624. ; to the sendmail binary. These parameters will always replace the value of
  625. ; the 5th parameter to mail(), even in safe mode.
  626. ;mail.force_extra_paramaters =
  627.  
  628. [SQL]
  629. sql.safe_mode = Off
  630.  
  631. [ODBC]
  632. ;odbc.default_db    =  Not yet implemented
  633. ;odbc.default_user  =  Not yet implemented
  634. ;odbc.default_pw    =  Not yet implemented
  635.  
  636. ; Allow or prevent persistent links.
  637. odbc.allow_persistent = On
  638.  
  639. ; Check that a connection is still valid before reuse.
  640. odbc.check_persistent = On
  641.  
  642. ; Maximum number of persistent links.  -1 means no limit.
  643. odbc.max_persistent = -1
  644.  
  645. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  646. odbc.max_links = -1
  647.  
  648. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  649. ; passthru.
  650. odbc.defaultlrl = 4096
  651.  
  652. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  653. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  654. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  655. odbc.defaultbinmode = 1
  656.  
  657. [MySQL]
  658. ; Allow or prevent persistent links.
  659. mysql.allow_persistent = On
  660.  
  661. ; Maximum number of persistent links.  -1 means no limit.
  662. mysql.max_persistent = -1
  663.  
  664. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  665. mysql.max_links = -1
  666.  
  667. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  668. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  669. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  670. ; at MYSQL_PORT.
  671. mysql.default_port =
  672.  
  673. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  674. ; MySQL defaults.
  675. mysql.default_socket =
  676.  
  677. ; Default host for mysql_connect() (doesn't apply in safe mode).
  678. mysql.default_host =
  679.  
  680. ; Default user for mysql_connect() (doesn't apply in safe mode).
  681. mysql.default_user =
  682.  
  683. ; Default password for mysql_connect() (doesn't apply in safe mode).
  684. ; Note that this is generally a *bad* idea to store passwords in this file.
  685. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  686. ; and reveal this password!  And of course, any users with read access to this
  687. ; file will be able to reveal the password as well.
  688. mysql.default_password =
  689.  
  690. ; Maximum time (in secondes) for connect timeout. -1 means no limimt
  691. mysql.connect_timeout = 60
  692.  
  693. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  694. ; SQL-Erros will be displayed.
  695. mysql.trace_mode = Off
  696.  
  697. [MySQLI]
  698.  
  699. ; Maximum number of links.  -1 means no limit.
  700. mysqli.max_links = -1
  701.  
  702. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  703. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  704. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  705. ; at MYSQL_PORT.
  706. mysqli.default_port = 3306
  707.  
  708. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  709. ; MySQL defaults.
  710. mysqli.default_socket =
  711.  
  712. ; Default host for mysql_connect() (doesn't apply in safe mode).
  713. mysqli.default_host =
  714.  
  715. ; Default user for mysql_connect() (doesn't apply in safe mode).
  716. mysqli.default_user =
  717.  
  718. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  719. ; Note that this is generally a *bad* idea to store passwords in this file.
  720. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  721. ; and reveal this password!  And of course, any users with read access to this
  722. ; file will be able to reveal the password as well.
  723. mysqli.default_password =
  724.  
  725. ; Allow or prevent reconnect
  726. mysqli.reconnect = Off
  727.  
  728. [mSQL]
  729. ; Allow or prevent persistent links.
  730. msql.allow_persistent = On
  731.  
  732. ; Maximum number of persistent links.  -1 means no limit.
  733. msql.max_persistent = -1
  734.  
  735. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  736. msql.max_links = -1
  737.  
  738. [PostgresSQL]
  739. ; Allow or prevent persistent links.
  740. pgsql.allow_persistent = On
  741.  
  742. ; Detect broken persistent links always with pg_pconnect().
  743. ; Auto reset feature requires a little overheads.
  744. pgsql.auto_reset_persistent = Off
  745.  
  746. ; Maximum number of persistent links.  -1 means no limit.
  747. pgsql.max_persistent = -1
  748.  
  749. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  750. pgsql.max_links = -1
  751.  
  752. ; Ignore PostgreSQL backends Notice message or not.
  753. ; Notice message logging require a little overheads.
  754. pgsql.ignore_notice = 0
  755.  
  756. ; Log PostgreSQL backends Noitce message or not.
  757. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  758. pgsql.log_notice = 0
  759.  
  760. [Sybase]
  761. ; Allow or prevent persistent links.
  762. sybase.allow_persistent = On
  763.  
  764. ; Maximum number of persistent links.  -1 means no limit.
  765. sybase.max_persistent = -1
  766.  
  767. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  768. sybase.max_links = -1
  769.  
  770. ;sybase.interface_file = "/usr/sybase/interfaces"
  771.  
  772. ; Minimum error severity to display.
  773. sybase.min_error_severity = 10
  774.  
  775. ; Minimum message severity to display.
  776. sybase.min_message_severity = 10
  777.  
  778. ; Compatability mode with old versions of PHP 3.0.
  779. ; If on, this will cause PHP to automatically assign types to results according
  780. ; to their Sybase type, instead of treating them all as strings.  This
  781. ; compatability mode will probably not stay around forever, so try applying
  782. ; whatever necessary changes to your code, and turn it off.
  783. sybase.compatability_mode = Off
  784.  
  785. [Sybase-CT]
  786. ; Allow or prevent persistent links.
  787. sybct.allow_persistent = On
  788.  
  789. ; Maximum number of persistent links.  -1 means no limit.
  790. sybct.max_persistent = -1
  791.  
  792. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  793. sybct.max_links = -1
  794.  
  795. ; Minimum server message severity to display.
  796. sybct.min_server_severity = 10
  797.  
  798. ; Minimum client message severity to display.
  799. sybct.min_client_severity = 10
  800.  
  801. [dbx]
  802. ; returned column names can be converted for compatibility reasons
  803. ; possible values for dbx.colnames_case are
  804. ; "unchanged" (default, if not set)
  805. ; "lowercase"
  806. ; "uppercase"
  807. ; the recommended default is either upper- or lowercase, but
  808. ; unchanged is currently set for backwards compatibility
  809. dbx.colnames_case = "lowercase"
  810.  
  811. [bcmath]
  812. ; Number of decimal digits for all bcmath functions.
  813. bcmath.scale = 0
  814.  
  815. [browscap]
  816. ;browscap = extra/browscap.ini
  817.  
  818. [Informix]
  819. ; Default host for ifx_connect() (doesn't apply in safe mode).
  820. ifx.default_host =
  821.  
  822. ; Default user for ifx_connect() (doesn't apply in safe mode).
  823. ifx.default_user =
  824.  
  825. ; Default password for ifx_connect() (doesn't apply in safe mode).
  826. ifx.default_password =
  827.  
  828. ; Allow or prevent persistent links.
  829. ifx.allow_persistent = On
  830.  
  831. ; Maximum number of persistent links.  -1 means no limit.
  832. ifx.max_persistent = -1
  833.  
  834. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  835. ifx.max_links = -1
  836.  
  837. ; If on, select statements return the contents of a text blob instead of its id.
  838. ifx.textasvarchar = 0
  839.  
  840. ; If on, select statements return the contents of a byte blob instead of its id.
  841. ifx.byteasvarchar = 0
  842.  
  843. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  844. ; life of Informix SE users.
  845. ifx.charasvarchar = 0
  846.  
  847. ; If on, the contents of text and byte blobs are dumped to a file instead of
  848. ; keeping them in memory.
  849. ifx.blobinfile = 0
  850.  
  851. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  852. ; NULL's are returned as string 'NULL'.
  853. ifx.nullformat = 0
  854.  
  855. [Session]
  856. ; Handler used to store/retrieve data.
  857. session.save_handler = files
  858.  
  859. ; Argument passed to save_handler.  In the case of files, this is the path
  860. ; where data files are stored. Note: Windows users have to change this
  861. ; variable in order to use PHP's session functions.
  862. ;
  863. ; As of PHP 4.0.1, you can define the path as:
  864. ;
  865. ;     session.save_path = "N;/path"
  866. ;
  867. ; where N is an integer.  Instead of storing all the session files in
  868. ; /path, what this will do is use subdirectories N-levels deep, and
  869. ; store the session data in those directories.  This is useful if you
  870. ; or your OS have problems with lots of files in one directory, and is
  871. ; a more efficient layout for servers that handle lots of sessions.
  872. ;
  873. ; NOTE 1: PHP will not create this directory structure automatically.
  874. ;         You can use the script in the ext/session dir for that purpose.
  875. ; NOTE 2: See the section on garbage collection below if you choose to
  876. ;         use subdirectories for session storage
  877. ;
  878. ; The file storage module creates files using mode 600 by default.
  879. ; You can change that by using
  880. ;
  881. ;     session.save_path = "N;MODE;/path"
  882. ;
  883. ; where MODE is the octal representation of the mode. Note that this
  884. ; does not overwrite the process's umask.
  885. session.save_path = "/tmp"
  886.  
  887. ; Whether to use cookies.
  888. session.use_cookies = 1
  889.  
  890. ; This option enables administrators to make their users invulnerable to
  891. ; attacks which involve passing session ids in URLs; defaults to 0.
  892. ; session.use_only_cookies = 1
  893.  
  894. ; Name of the session (used as cookie name).
  895. session.name = PHPSESSID
  896.  
  897. ; Initialize session on request startup.
  898. session.auto_start = 0
  899.  
  900. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  901. session.cookie_lifetime = 0
  902.  
  903. ; The path for which the cookie is valid.
  904. session.cookie_path = /
  905.  
  906. ; The domain for which the cookie is valid.
  907. session.cookie_domain =
  908.  
  909. ; Handler used to serialize data.  php is the standard serializer of PHP.
  910. session.serialize_handler = php
  911.  
  912. ; Define the probability that the 'garbage collection' process is started
  913. ; on every session initialization.
  914. ; The probability is calculated by using gc_probability/gc_divisor,
  915. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  916. ; on each request.
  917.  
  918. session.gc_probability = 1
  919. session.gc_divisor     = 1000
  920.  
  921. ; After this number of seconds, stored data will be seen as 'garbage' and
  922. ; cleaned up by the garbage collection process.
  923. session.gc_maxlifetime = 1440
  924.  
  925. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  926. ; to initialize a session variable in the global scope, albeit register_globals
  927. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  928. ; You can disable the feature and the warning seperately. At this time,
  929. ; the warning is only displayed, if bug_compat_42 is enabled.
  930.  
  931. session.bug_compat_42 = 0
  932. session.bug_compat_warn = 1
  933.  
  934. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  935. ; HTTP_REFERER has to contain this substring for the session to be
  936. ; considered as valid.
  937. session.referer_check =
  938.  
  939. ; How many bytes to read from the file.
  940. session.entropy_length = 0
  941.  
  942. ; Specified here to create the session id.
  943. session.entropy_file =
  944.  
  945. ;session.entropy_length = 16
  946.  
  947. ;session.entropy_file = /dev/urandom
  948.  
  949. ; Set to {nocache,private,public,} to determine HTTP caching aspects.
  950. ; or leave this empty to avoid sending anti-caching headers.
  951. session.cache_limiter = nocache
  952.  
  953. ; Document expires after n minutes.
  954. session.cache_expire = 180
  955.  
  956. ; trans sid support is disabled by default.
  957. ; Use of trans sid may risk your users security.
  958. ; Use this option with caution.
  959. ; - User may send URL contains active session ID
  960. ;   to other person via. email/irc/etc.
  961. ; - URL that contains active session ID may be stored
  962. ;   in publically accessible computer.
  963. ; - User may access your site with the same session ID
  964. ;   always using URL stored in browser's history or bookmarks.
  965. session.use_trans_sid = 0
  966.  
  967. ; Select a hash function
  968. ; 0: MD5   (128 bits)
  969. ; 1: SHA-1 (160 bits)
  970. session.hash_function = 0
  971.  
  972. ; Define how many bits are stored in each character when converting
  973. ; the binary hash data to something readable.
  974. ;
  975. ; 4 bits: 0-9, a-f
  976. ; 5 bits: 0-9, a-v
  977. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  978. session.hash_bits_per_character = 5
  979.  
  980. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  981. ; form/fieldset are special; if you include them here, the rewriter will
  982. ; add a hidden <input> field with the info which is otherwise appended
  983. ; to URLs.  If you want XHTML conformity, remove the form entry.
  984. ; Note that all valid entries require a "=", even if no value follows.
  985. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  986.  
  987. [MSSQL]
  988. ; Allow or prevent persistent links.
  989. mssql.allow_persistent = On
  990.  
  991. ; Maximum number of persistent links.  -1 means no limit.
  992. mssql.max_persistent = -1
  993.  
  994. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  995. mssql.max_links = -1
  996.  
  997. ; Minimum error severity to display.
  998. mssql.min_error_severity = 10
  999.  
  1000. ; Minimum message severity to display.
  1001. mssql.min_message_severity = 10
  1002.  
  1003. ; Compatability mode with old versions of PHP 3.0.
  1004. mssql.compatability_mode = Off
  1005.  
  1006. ; Connect timeout
  1007. ;mssql.connect_timeout = 5
  1008.  
  1009. ; Query timeout
  1010. ;mssql.timeout = 60
  1011.  
  1012. ; Valid range 0 - 2147483647.  Default = 4096.
  1013. ;mssql.textlimit = 4096
  1014.  
  1015. ; Valid range 0 - 2147483647.  Default = 4096.
  1016. ;mssql.textsize = 4096
  1017.  
  1018. ; Limits the number of records in each batch.  0 = all records in one batch.
  1019. ;mssql.batchsize = 0
  1020.  
  1021. ; Specify how datetime and datetim4 columns are returned
  1022. ; On => Returns data converted to SQL server settings
  1023. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1024. ;mssql.datetimeconvert = On
  1025.  
  1026. ; Use NT authentication when connecting to the server
  1027. mssql.secure_connection = Off
  1028.  
  1029. ; Specify max number of processes. Default = 25
  1030. ;mssql.max_procs = 25
  1031.  
  1032. [Assertion]
  1033. ; Assert(expr); active by default.
  1034. ;assert.active = On
  1035.  
  1036. ; Issue a PHP warning for each failed assertion.
  1037. ;assert.warning = On
  1038.  
  1039. ; Don't bail out by default.
  1040. ;assert.bail = Off
  1041.  
  1042. ; User-function to be called if an assertion fails.
  1043. ;assert.callback = 0
  1044.  
  1045. ; Eval the expression with current error_reporting().  Set to true if you want
  1046. ; error_reporting(0) around the eval().
  1047. ;assert.quiet_eval = 0
  1048.  
  1049. [Ingres II]
  1050. ; Allow or prevent persistent links.
  1051. ingres.allow_persistent = On
  1052.  
  1053. ; Maximum number of persistent links.  -1 means no limit.
  1054. ingres.max_persistent = -1
  1055.  
  1056. ; Maximum number of links, including persistents.  -1 means no limit.
  1057. ingres.max_links = -1
  1058.  
  1059. ; Default database (format: [node_id::]dbname[/srv_class]).
  1060. ingres.default_database =
  1061.  
  1062. ; Default user.
  1063. ingres.default_user =
  1064.  
  1065. ; Default password.
  1066. ingres.default_password =
  1067.  
  1068. [Verisign Payflow Pro]
  1069. ; Default Payflow Pro server.
  1070. pfpro.defaulthost = "test-payflow.verisign.com"
  1071.  
  1072. ; Default port to connect to.
  1073. pfpro.defaultport = 443
  1074.  
  1075. ; Default timeout in seconds.
  1076. pfpro.defaulttimeout = 30
  1077.  
  1078. ; Default proxy IP address (if required).
  1079. ;pfpro.proxyaddress =
  1080.  
  1081. ; Default proxy port.
  1082. ;pfpro.proxyport =
  1083.  
  1084. ; Default proxy logon.
  1085. ;pfpro.proxylogon =
  1086.  
  1087. ; Default proxy password.
  1088. ;pfpro.proxypassword =
  1089.  
  1090. [Sockets]
  1091. ; Use the system read() function instead of the php_read() wrapper.
  1092. sockets.use_system_read = On
  1093.  
  1094. [com]
  1095. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1096. ;com.typelib_file =
  1097. ; allow Distributed-COM calls
  1098. ;com.allow_dcom = true
  1099. ; autoregister constants of a components typlib on com_load()
  1100. ;com.autoregister_typelib = true
  1101. ; register constants casesensitive
  1102. ;com.autoregister_casesensitive = false
  1103. ; show warnings on duplicate constat registrations
  1104. ;com.autoregister_verbose = true
  1105.  
  1106. [mbstring]
  1107. ; language for internal character representation.
  1108. ;mbstring.language = Japanese
  1109.  
  1110. ; internal/script encoding.
  1111. ; Some encoding cannot work as internal encoding.
  1112. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1113. ;mbstring.internal_encoding = EUC-JP
  1114.  
  1115. ; http input encoding.
  1116. ;mbstring.http_input = auto
  1117.  
  1118. ; http output encoding. mb_output_handler must be
  1119. ; registered as output buffer to function
  1120. ;mbstring.http_output = SJIS
  1121.  
  1122. ; enable automatic encoding translation accoding to
  1123. ; mbstring.internal_encoding setting. Input chars are
  1124. ; converted to internal encoding by setting this to On.
  1125. ; Note: Do _not_ use automatic encoding translation for
  1126. ;       portable libs/applications.
  1127. ;mbstring.encoding_translation = Off
  1128.  
  1129. ; automatic encoding detection order.
  1130. ; auto means
  1131. ;mbstring.detect_order = auto
  1132.  
  1133. ; substitute_character used when character cannot be converted
  1134. ; one from another
  1135. ;mbstring.substitute_character = none;
  1136.  
  1137. ; overload(replace) single byte functions by mbstring functions.
  1138. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1139. ; etc. Possible values are 0,1,2,4 or combination of them.
  1140. ; For example, 7 for overload everything.
  1141. ; 0: No overload
  1142. ; 1: Overload mail() function
  1143. ; 2: Overload str*() functions
  1144. ; 4: Overload ereg*() functions
  1145. ;mbstring.func_overload = 0
  1146.  
  1147. [FrontBase]
  1148. ;fbsql.allow_persistent = On
  1149. ;fbsql.autocommit = On
  1150. ;fbsql.default_database =
  1151. ;fbsql.default_database_password =
  1152. ;fbsql.default_host =
  1153. ;fbsql.default_password =
  1154. ;fbsql.default_user = "_SYSTEM"
  1155. ;fbsql.generate_warnings = Off
  1156. ;fbsql.max_connections = 128
  1157. ;fbsql.max_links = 128
  1158. ;fbsql.max_persistent = -1
  1159. ;fbsql.max_results = 128
  1160. ;fbsql.batchSize = 1000
  1161.  
  1162. [exif]
  1163. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1164. ; With mbstring support this will automatically be converted into the encoding
  1165. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1166. ; is used. For the decode settings you can distinguish between motorola and
  1167. ; intel byte order. A decode setting cannot be empty.
  1168. ;exif.encode_unicode = ISO-8859-15
  1169. ;exif.decode_unicode_motorola = UCS-2BE
  1170. ;exif.decode_unicode_intel    = UCS-2LE
  1171. ;exif.encode_jis =
  1172. ;exif.decode_jis_motorola = JIS
  1173. ;exif.decode_jis_intel    = JIS
  1174.  
  1175. [Tidy]
  1176. ; The path to a default tidy configuration file to use when using tidy
  1177. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1178.  
  1179. ; Should tidy clean and repair output automatically?
  1180. ; WARNING: Do not use this option if you are generating non-html content
  1181. ; such as dynamic images
  1182. tidy.clean_output = Off
  1183.  
  1184. ; Local Variables:
  1185. ; tab-width: 4
  1186. ; End:
  1187.